home *** CD-ROM | disk | FTP | other *** search
/ Medabots Cardz / Medabots CD Cardz Rokusho.bin / pc / assets / rokusho.dxr / 00076_Script_76 < prev    next >
Text File  |  2001-12-07  |  388b  |  25 lines

  1. global scorez, hit, missed, bullets, randomvalue, startingpoint, area, players_name
  2.  
  3.  
  4. on mouseEnter me
  5.   cursor 280
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor 0
  10. end
  11.  
  12. on mouseUp me
  13.   cursor 0
  14.   area = "2a"
  15.   players_name = member("players_name").text
  16.   scorez = 0
  17.   startingpoint = 0
  18.   randomvalue = 100
  19.   bullets = 20
  20.   missed = 0
  21.   hit = 0
  22.   go to frame "start_of_game"
  23. end
  24.  
  25.